Display <string>
Prints messages
in the Display Window.
Parameters
< string >
String or variable which contains the text to be displayed.
Remarks
- Use this command
to print any useful messages for the administrator. For example, you can print
information like caller id and connection time for every incoming connection.
Example
:MAIN
display "Waiting for call..."
answer
display "Call from: " $cli
;........
;........
hangup
goto MAIN
:ONHANGUP
hangup
goto MAIN